home *** CD-ROM | disk | FTP | other *** search
/ Loadstar 128 35 / q35.d81 / t.calhoon u 35 < prev    next >
Text File  |  2022-08-28  |  8KB  |  224 lines

  1.  
  2.  
  3.                 C A L H O O N   U N I V E R S I T Y   # 3 5
  4.  
  5.                           Program by Bob Markland
  6.  
  7.  
  8.     Welcome to your fourth semester at Calhoon University.  We are happy to
  9. offer you two new courses: NO IT'S NOT and ORIGINALLY. The first quiz
  10. checks to see if you (along with just about everybody else) have been
  11. mislead by incorrect names of common objects. The second tests your
  12. knowledge of working titles of famous works of literature.
  13.  
  14.     These are all part of our College of Liberal Arts and will help you in
  15. getting along with your neighbors and peers, and may even come in handy
  16. when trying to pick up babes, or dudes...or both, as the case may be.
  17. After all, it IS the College of Liberal Arts.
  18.  
  19.  
  20.  STUDENT ORIENTATION
  21.  -------------------
  22.  
  23.     At CALHOON UNIVERSITY each quiz consists of up to 100 questions (25 for
  24. the two on this disk) and offers 4 multiple-choice answers. Use CRSR
  25. DOWN/UP to highlight the correct answer and press RETURN to enter your
  26. choice. Or sit back in your favorite chair and use a joystick in port 2.
  27. Select and enter your choice with DOWN, UP, and FIRE.
  28.  
  29.     Questions are presented in a different random order each time the
  30. program is run to enhance learning value. In addition to the questions and
  31. answers the screen display indicates the number of questions presented, the
  32. previous high score, the point value for the current question and the
  33. cumulative score for the current quiz.
  34.  
  35.  
  36.  YOUR GRADE
  37.  ----------
  38.  
  39.     The scoring system rewards consistently correct answers. The point
  40. value begins at 1. With each correct answer the point value is increased by
  41. 1. An incorrect answer resets the point value back to 1. There is no
  42. further penalty for incorrect answers and the quiz continues until all
  43. questions have been answered. The valedictorian will score 1275 points on
  44. 50 question quizzes, and 325 on 25 question puzzles.
  45.  
  46.     Following each quiz the Dean's List displays the top 10 students. If
  47. your score qualifies you for honors a cursor appears on the appropriate
  48. line so that you may enter your name. Type from 1 to 10 characters and
  49. press RETURN to record your score.
  50.  
  51.     From the Dean's List you may elect to try another quiz or quit. You may
  52. also quit a quiz in progress by pressing [Q] at the start of any question.
  53. In this case you will be taken to the Dean's List, but are not considered
  54. for honors, regardless of your current score. Your options are: Try a new
  55. quiz, Continue with the quiz in progress, or Drop out of school. When you
  56. drop out of school, the program searches for a LOADSTAR disk in the active
  57. drive. If none is found you are returned to BASIC.
  58.  
  59.  
  60.  GUEST PROFESSORSHIPS
  61.  --------------------
  62.  
  63.     Professor emeritus Knees Calhoon is actively recruiting guest
  64. professors. America's schools are suffering from a shortage of good
  65. teachers, and CALHOON UNIVERSITY is no exception. There are two ways to
  66. become a guest professor:
  67.  
  68.  (1)  Follow the instructions given below and submit a completed quiz.
  69.  
  70.  (2)  If you're not inclined to structure and test a quiz in CALHOON
  71. UNIVERSITY format, submit a hard or disk copy of any word-processed
  72. multiple-choice quiz, clearly indicating which answer possibility is
  73. correct. Preferably, quizzes should be 25 to 100 questions each.
  74.  
  75.     If you would rather just sit back and enjoy the curriculum, but have a
  76. topic that particularly interests you, give Fender some feedback. The most
  77. requested topics will definitely be used in future quizzes.
  78.  
  79.  
  80.  STRUCTURING A QUIZ
  81.  ------------------
  82.  
  83.     It's not at all difficult to put together a quiz, whether it's for
  84. submission to LOADSTAR or simply for your own educational or entertainment
  85. purposes. You may find it easiest to load one of the quizzes on this disk
  86. into your word processor and use it as a template, changing each line as
  87. needed.
  88.  
  89.  (1) Use any word processor that allows you to save a PETASCII file in PRG
  90. format. THE WRITE STUFF is recommended.
  91.  
  92.  (2) Begin the file on the first character of the first line with a six-
  93. letter or shorter identifier that ends with a period. This will be the
  94. filename prefix for the "Dean's List" which is unique to each quiz.
  95.  
  96.  (3) The second line will identify you as the author. Use ALL lowercase and
  97. enter:
  98.  
  99.  quiz by: your name, followed by a GREATER THAN sign (>).
  100.  
  101.  (4) The third line must say "Calhoon University". (Note the required use
  102. of the uppercase "C". This distinguishes the file from the C-64 version
  103. which uses "Professor Calhoon" on this line.
  104.  
  105.  (5) Line 4 is the name of the quiz in upper-lower case. You may use as
  106. many lines as you need, but restrict their length to 64 characters.
  107.  
  108.  (6) Follow this with two blank lines.
  109.  
  110.  (7) This is the area for up to 100 questions. Each question consists of 10
  111. lines (no more/no less) in this format:
  112.  
  113.                 REMARKS
  114.                 (not part of the file)
  115.  
  116. Q-1             ;question number
  117. #a              ;correct answer indicator
  118. question line 1 ;
  119. question line 2 ;if line 2 isn't needed use a single asterisk (*)
  120. *               ;always put an asterisk on this line
  121. answer a        ;
  122. answer b        ;
  123. answer c        ;
  124. answer d        ;
  125. blank line      ;separates questions
  126.  
  127.  
  128.  QUESTION AND ANSWER RESTRICTIONS:
  129.  
  130. Use all lowercase for the questions and answers.
  131.  
  132. Question lines may be up to 64 characters long.
  133.  
  134. If you do not need question line 2, enter a single asterisk (*).
  135.  
  136. A line with a single asterisk MUST separate the questions from the
  137. answers.
  138.  
  139. Answers may be up to 22 characters long.
  140.  
  141. Do not use the number sign (#) except for identifying the correct answer.
  142.  
  143. Do not use the double quote (") anywhere. If you want a double quote to
  144. appear in your question or answer, use the AT sign (@).
  145.  
  146. Do not use the less than sign (<) except on the last line of the quiz.
  147.  
  148. Do not use the greater than sign (>) except at the end of the author line.
  149.  
  150. You may use the English Pound sign for an underline character in the
  151. question. Use five of them for a reasonable length blank.
  152.  
  153.  (8) End the quiz with a LESS THAN sign (<) on a line by itself. This is
  154. ESSENTIAL! To accommodate quizzes of different lengths the program must
  155. know where each quiz ends.
  156.  
  157.  (9) Save the file as a PETASCII PRG file with a "cu." prefix.
  158.  
  159.     Here are two ways to save your file with TWS.
  160.  
  161.  (1) Write the quiz making sure you have NO reversed codes in the text and
  162. press CTRL-A (for PETASCII mode), then press CTRL-S (for save), delete the
  163. preceding hyphen, enter "cu." then your file's name, or:
  164.  
  165.  (2) Write the quiz and set the margins to lm0 rm16 tm0 bm0. Then go to the
  166. print menu and "Print to disk". At the filename prompt enter
  167. "cu.filename,p,w" without the quotes.
  168.  
  169.  
  170.     Here is a short sample of how a quiz file might look:
  171.  
  172. tvt1.
  173. quiz by: bob markland>
  174. Calhoon University Television
  175. Trivia 101
  176.  
  177.  
  178. Q-1
  179. #d
  180. name the occupation of jackie gleason as ralph kramden, on the
  181. honeymooners.
  182. *
  183. sewer worker
  184. longshoreman
  185. bartender
  186. bus driver
  187.  
  188. Q-2
  189. #b
  190. the red skelton show frequently featured a character named \\\\\.
  191. *
  192. dudley doright
  193. freddy freeloader
  194. manny the moocher
  195. deadbeat dan
  196.  
  197.     Once your quiz file, with a "cu." prefix has been saved to a disk
  198. containing the version of CALHOON UNIVERSITY found on this issue, the file
  199. requester will recognize it. To test your quiz, select it from the menu and
  200. go through all of the questions. Look for typos or anything that corrupts
  201. the screen or format. Go back and edit the quiz, as necessary, then test
  202. again.
  203.  
  204.     The five most common problem areas are:
  205.  
  206. Format errors in the header (lines 1-4).
  207.  
  208. Missing carriage returns at the end of a question or answer line.
  209.  
  210. Too many or too few lines for each question.
  211.  
  212. Use of prohibited characters or improper use of uppercase characters.
  213.  
  214. Lines exceeding 64 characters for questions or 22 characters for answers.
  215.  
  216.     You may prefer to simply test your knowledge with CALHOON UNIVERSITY's
  217. course offering and perhaps say to yourself along the way, "I never knew
  218. that." On the other hand, LOADSTAR subscribers are a diverse lot. So if you
  219. have an interest or special knowledge in almost any subject area this is a
  220. perfect forum in which to share it.
  221.  
  222.                     \\\\\ R - Run   RETURN - Menu \\\\\
  223.  
  224.